342f1d3091ebd11f96b40c1a0439d6667704500e,src/dorkbox/util/tweenengine/BaseTween.java,BaseTween,update,#number#,657

Before Change


                // set our currentTime for the callbacks to be accurate
                currentTime = 0;

                callCallbacks(TweenCallback.Events.BACK_END);

                final int repeatCountStack = repeatCount;
                ////////////////////////////////////////////

After Change


                delta = newTime;

                // only run state transitions IFF it was a transition on the timeline
                if (currentTime > 0) {
                    // set our currentTime for the callbacks to be accurate
                    currentTime = 0;

                    callCallbacks(TweenCallback.Events.BACK_END);

                    final int repeatCountStack = repeatCount;
                    ////////////////////////////////////////////